@charset "UTF-8";
body,
html,
div,
header,
footer,
nav,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1f2937;
  background-color: #f3f4f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: #3b82f6;
  transition: color 200ms ease;
}
a:hover {
  color: #2563eb;
}

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 32px 0;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 48px 0 24px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.015em;
  margin: 40px 0 20px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin: 32px 0 16px;
}

h5 {
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  margin: 24px 0 12px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin: 20px 0 10px;
}

blockquote {
  color: #4b5563;
  border-left: 4px solid #3b82f6;
  padding: 16px 24px;
  background: #f8fafc;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
}
blockquote p:last-of-type {
  margin: 0;
}

table {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin: 20px 0;
  overflow: hidden;
  border-collapse: collapse;
  width: 100%;
}
table thead {
  background-color: #f9fafb;
}
table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}
table tbody tr {
  transition: background 150ms ease;
}
table tbody tr:nth-of-type(even) {
  background-color: #f9fafb;
}
table tbody tr:hover {
  background-color: #f0f9ff;
}
table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid #f3f4f6;
}

p {
  margin: 0 0 18px;
}

img {
  max-width: 100%;
  border-radius: 12px;
}

code {
  font-family: "Source Code Pro", monospace;
  font-size: 0.875em;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
  color: #dc2626;
}

pre {
  margin: 24px 0;
  padding: 24px;
  border-radius: 16px;
  overflow-x: auto;
  word-wrap: break-word;
  white-space: pre-wrap;
  background: #1e1e1e;
}
pre > code {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
  border: none;
  background-color: transparent;
  font-family: "Source Code Pro", Monaco, Menlo, Consolas, monospace;
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 72px;
  color: #374151;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header a {
  color: #4b5563;
  transition: all 200ms ease;
}
header a:hover {
  color: #3b82f6;
}
header .wrapper {
  width: 1200px;
  margin: 0 auto;
  line-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .wrapper .brand {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.025em;
}
header .wrapper .menu {
  display: none;
}
header .wrapper nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}
header .wrapper nav ul li {
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
header .wrapper nav ul li a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 200ms ease;
}
header .wrapper nav ul li a:hover {
  background-color: #f1f5f9;
  color: #3b82f6;
}
header .wrapper nav ul li > .active {
  color: #3b82f6;
  background-color: #eff6ff;
}
header .wrapper nav ul li .submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  min-width: 160px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
header .wrapper nav ul li .submenu li a {
  display: block;
  padding: 12px 20px;
  white-space: nowrap;
  border-radius: 0;
  font-weight: 400;
}
header .wrapper nav ul li .submenu li a:hover {
  background-color: #f8fafc;
}
header .wrapper nav ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (max-width: 1200px) and (min-width: 770px) {
  header .wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 770px) {
  header {
    height: 64px;
  }
  header .wrapper {
    width: 95%;
    line-height: 64px;
  }
  header .wrapper .brand {
    font-size: 18px;
  }
  header .wrapper .menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    transition: background 200ms ease;
  }
  header .wrapper .menu:hover {
    background: #f1f5f9;
  }
  header .wrapper > .active {
    background: #eff6ff;
    color: #3b82f6;
  }
  header .wrapper .nav-show {
    visibility: visible;
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  header .wrapper nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header .wrapper nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  header .wrapper nav ul li a {
    display: block;
    padding: 14px 20px;
    border-radius: 12px;
  }
  header .wrapper nav ul li .submenu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f8fafc;
    border-radius: 12px;
    margin-top: 8px;
    padding: 8px;
  }
  header .wrapper nav ul li .submenu li a {
    padding: 12px 20px 12px 32px;
    border-radius: 8px;
  }
}
#markdown-toc {
  display: none;
}

.page[post] .label {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.page[post] .label .label-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8fafc;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}
.page[post] .label .label-card i {
  color: #94a3b8;
}
.page[post] a {
  color: #3b82f6;
  border-radius: 4px;
  padding: 0 2px;
}
.page[post] a:hover {
  color: #2563eb;
  background: #eff6ff;
}
.page[post] .left {
  font-size: 17px;
  line-height: 1.9;
}
.page[post] .left ul > h2 {
  color: #111827;
  font-size: 24px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.page[post] .left ul li {
  color: #4b5563;
}

.read-all {
  margin-top: 24px;
}
.read-all a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.read-all a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.relatedPost {
  padding: 16px 0;
}
.relatedPost a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fafbfc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.relatedPost a:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  transform: translateX(4px);
}

@media screen and (max-width: 770px) {
  .page[post] .left {
    font-size: 16px;
    padding: 20px;
    border-radius: 16px;
  }
  .page[post] .left h2 {
    font-size: 22px;
  }
  .page[post] .left h3 {
    font-size: 20px;
  }
  .page[post] .left h4 {
    font-size: 18px;
  }
}
.clearfix:after {
  content: "​";
  display: block;
  height: 0;
  clear: both;
}

.page {
  width: 1200px;
  margin: 40px auto;
  display: flex;
  gap: 32px;
}
.page .left {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}
.page .left > h1 {
  margin-bottom: 12px;
  font-size: 32px;
  letter-spacing: -0.025em;
}
.page .left a:not([title]) {
  word-break: break-all;
}
.page .left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page .left ul > h2 {
  margin-left: 0;
  color: #374151;
  font-size: 22px;
}
.page .left ul li {
  padding: 20px 0;
  border-bottom: 1px solid #f8fafc;
  transition: all 200ms ease;
}
.page .left ul li:last-child {
  border-bottom: none;
}
.page .left ul li:hover {
  padding-left: 8px;
}
.page .left ul li time {
  display: inline-block;
  width: 130px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
}
.page .left ul li .title {
  font-weight: 600;
  color: #111827;
  transition: color 200ms ease;
}
.page .left ul li .title:hover {
  color: #3b82f6;
}
.page .left ul li .categories {
  display: inline-block;
  padding-left: 16px;
}
.page .left ul li .categories i {
  color: #cbd5e1;
}
.page .left ul li .categories a {
  display: inline-block;
  padding: 4px 12px;
  background: #eff6ff;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  margin-left: 10px;
  transition: all 200ms ease;
}
.page .left ul li .categories a:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-1px);
}
.page .left ul li .pageTag {
  display: inline-block;
  padding-left: 16px;
}
.page .left ul li .pageTag i {
  color: #e2e8f0;
}
.page .left ul li .pageTag a {
  display: inline-block;
  padding: 4px 12px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  margin-left: 10px;
  transition: all 200ms ease;
}
.page .left ul li .pageTag a:hover {
  background: #d1fae5;
  color: #059669;
}
.page .anchor {
  display: none;
}
.page .right {
  width: 300px;
  flex-shrink: 0;
}
.page .right .fixed {
  position: fixed;
  top: 96px;
}
.page .right .scroll-bottom {
  position: absolute;
  bottom: 32px;
}
.page .right .wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page .right .side {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.page .right .side > div:first-child {
  padding: 20px 24px;
  border-bottom: 1px solid #f8fafc;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  background: #fafbfc;
}
.page .right .side a {
  color: #64748b;
  transition: all 200ms ease;
}
.page .right .side a:hover {
  color: #3b82f6;
}
.page .right .side .content-ul {
  padding: 16px 24px;
  margin: 0;
  list-style: none;
}
.page .right .side .content-ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f8fafc;
  transition: all 200ms ease;
}
.page .right .side .content-ul li:last-child {
  border-bottom: none;
}
.page .right .side .content-ul li:hover {
  padding-left: 4px;
}

@media screen and (max-width: 1200px) and (min-width: 770px) {
  .page {
    width: 90%;
  }
  .page .right {
    width: 260px;
  }
}
@media screen and (max-width: 770px) {
  .page {
    width: 95%;
    margin: 20px auto;
    flex-direction: column;
    gap: 20px;
  }
  .page .left {
    padding: 24px;
    border-radius: 16px;
  }
  .page .left > h1 {
    font-size: 26px;
  }
  .page .left ul > h2 {
    font-size: 20px;
    margin-left: 0;
  }
  .page .left ul li {
    padding: 16px 0;
  }
  .page .left ul li:hover {
    padding-left: 0;
  }
  .page .left ul li time {
    display: block;
    width: auto;
    margin-bottom: 8px;
  }
  .page .left ul li .title {
    display: block;
    font-size: 16px;
  }
  .page .anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: #64748b;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page .anchor:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
  }
  .page .anchor-hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
  }
  .page .right {
    width: 100%;
  }
  .page .right .fixed, .page .right .scroll-bottom {
    position: static;
  }
  .page .right .side {
    border-radius: 16px;
  }
  .page .right .side .content-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .page .right .side .content-ul li {
    border: none;
    padding: 0;
  }
  .page .right .side .content-ul li:hover {
    padding-left: 0;
  }
  .page .right-show {
    display: block;
  }
}
code {
  padding: 2px 6px;
  margin: 0 2px;
  font-size: 0.875em;
  border-radius: 4px;
  color: #dc2626;
  background-color: #f3f4f6;
  font-family: "Source Code Pro", Monaco, Menlo, Consolas, monospace;
}

pre {
  margin: 20px 0;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  word-wrap: break-word;
  white-space: pre-wrap;
  background: #1e1e1e;
}
pre > code {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #d4d4d4;
  border: none;
  background-color: transparent;
  font-family: "Source Code Pro", Monaco, Menlo, Consolas, monospace;
}

.highlight {
  border-radius: 8px;
  background: #1e1e1e;
}
.highlight .hll {
  background-color: #1e1e1e;
}
.highlight .c {
  color: #6a9955;
}
.highlight { /* Comment */ }
.highlight .err {
  color: #f44747;
}
.highlight { /* Error */ }
.highlight .k {
  color: #569cd6;
}
.highlight { /* Keyword */ }
.highlight .l {
  color: #b5cea8;
}
.highlight { /* Literal */ }
.highlight .n {
  color: #dcdcaa;
}
.highlight { /* Name */ }
.highlight .o {
  color: #d4d4d4;
}
.highlight { /* Operator */ }
.highlight .p {
  color: #d4d4d4;
}
.highlight { /* Punctuation */ }
.highlight .cm {
  color: #6a9955;
}
.highlight { /* Comment.Multiline */ }
.highlight .cp {
  color: #569cd6;
}
.highlight { /* Comment.Preproc */ }
.highlight .c1 {
  color: #6a9955;
}
.highlight { /* Comment.Single */ }
.highlight .cs {
  color: #6a9955;
}
.highlight { /* Comment.Special */ }
.highlight .ge {
  font-style: italic;
}
.highlight { /* Generic.Emph */ }
.highlight .gs {
  font-weight: bold;
}
.highlight { /* Generic.Strong */ }
.highlight .kc {
  color: #569cd6;
}
.highlight { /* Keyword.Constant */ }
.highlight .kd {
  color: #569cd6;
}
.highlight { /* Keyword.Declaration */ }
.highlight .kn {
  color: #d16969;
}
.highlight { /* Keyword.Namespace */ }
.highlight .kp {
  color: #569cd6;
}
.highlight { /* Keyword.Pseudo */ }
.highlight .kr {
  color: #569cd6;
}
.highlight { /* Keyword.Reserved */ }
.highlight .kt {
  color: #4ec9b0;
}
.highlight { /* Keyword.Type */ }
.highlight .ld {
  color: #ce9178;
}
.highlight { /* Literal.Date */ }
.highlight .m {
  color: #b5cea8;
}
.highlight { /* Literal.Number */ }
.highlight .s {
  color: #ce9178;
}
.highlight { /* Literal.String */ }
.highlight .na {
  color: #9cdcfe;
}
.highlight { /* Name.Attribute */ }
.highlight .nb {
  color: #4ec9b0;
}
.highlight { /* Name.Builtin */ }
.highlight .nc {
  color: #4ec9b0;
}
.highlight { /* Name.Class */ }
.highlight .no {
  color: #569cd6;
}
.highlight { /* Name.Constant */ }
.highlight .nd {
  color: #dcdcaa;
}
.highlight { /* Name.Decorator */ }
.highlight .ni {
  color: #4ec9b0;
}
.highlight { /* Name.Entity */ }
.highlight .ne {
  color: #4ec9b0;
}
.highlight { /* Name.Exception */ }
.highlight .nf {
  color: #dcdcaa;
}
.highlight { /* Name.Function */ }
.highlight .nl {
  color: #dcdcaa;
}
.highlight { /* Name.Label */ }
.highlight .nn {
  color: #4ec9b0;
}
.highlight { /* Name.Namespace */ }
.highlight .nx {
  color: #9cdcfe;
}
.highlight { /* Name.Other */ }
.highlight .py {
  color: #4ec9b0;
}
.highlight { /* Name.Property */ }
.highlight .nt {
  color: #569cd6;
}
.highlight { /* Name.Tag */ }
.highlight .nv {
  color: #9cdcfe;
}
.highlight { /* Name.Variable */ }
.highlight .ow {
  color: #d16969;
}
.highlight { /* Operator.Word */ }
.highlight .w {
  color: #d4d4d4;
}
.highlight { /* Text.Whitespace */ }
.highlight .mf {
  color: #b5cea8;
}
.highlight { /* Literal.Number.Float */ }
.highlight .mh {
  color: #b5cea8;
}
.highlight { /* Literal.Number.Hex */ }
.highlight .mi {
  color: #b5cea8;
}
.highlight { /* Literal.Number.Integer */ }
.highlight .mo {
  color: #b5cea8;
}
.highlight { /* Literal.Number.Oct */ }
.highlight .sb {
  color: #ce9178;
}
.highlight { /* Literal.String.Backtick */ }
.highlight .sc {
  color: #ce9178;
}
.highlight { /* Literal.String.Char */ }
.highlight .sd {
  color: #ce9178;
}
.highlight { /* Literal.String.Doc */ }
.highlight .s2 {
  color: #ce9178;
}
.highlight { /* Literal.String.Double */ }
.highlight .se {
  color: #b5cea8;
}
.highlight { /* Literal.String.Escape */ }
.highlight .sh {
  color: #ce9178;
}
.highlight { /* Literal.String.Heredoc */ }
.highlight .si {
  color: #ce9178;
}
.highlight { /* Literal.String.Interpol */ }
.highlight .sx {
  color: #ce9178;
}
.highlight { /* Literal.String.Other */ }
.highlight .sr {
  color: #ce9178;
}
.highlight { /* Literal.String.Regex */ }
.highlight .s1 {
  color: #ce9178;
}
.highlight { /* Literal.String.Single */ }
.highlight .ss {
  color: #ce9178;
}
.highlight { /* Literal.String.Symbol */ }
.highlight .bp {
  color: #4ec9b0;
}
.highlight { /* Name.Builtin.Pseudo */ }
.highlight .vc {
  color: #9cdcfe;
}
.highlight { /* Name.Variable.Class */ }
.highlight .vg {
  color: #9cdcfe;
}
.highlight { /* Name.Variable.Global */ }
.highlight .vi {
  color: #9cdcfe;
}
.highlight { /* Name.Variable.Instance */ }
.highlight .il {
  color: #b5cea8;
}
.highlight { /* Literal.Number.Integer.Long */ }
.highlight { /* Generic.Heading */ }
.highlight .gu {
  color: #6a9955;
}
.highlight { /* Generic.Subheading */ }
.highlight .gd {
  color: #f44747;
}
.highlight { /* Generic.Deleted */ }
.highlight .gi {
  color: #4ec9b0;
}
.highlight { /* Generic.Inserted */ }

.page[index] a {
  color: #3b82f6;
  transition: color 200ms ease;
}
.page[index] a:hover {
  color: #2563eb;
}
.page[index] .left > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.page[index] .left > ul > li {
  padding: 32px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 200ms ease;
}
.page[index] .left > ul > li:last-child {
  border-bottom: none;
}
.page[index] .left > ul > li:hover {
  padding-left: 12px;
}
.page[index] .left > ul li {
  color: #4b5563;
}
.page[index] .left > ul li h2 {
  border: none;
  font-size: 26px;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}
.page[index] .left > ul li h2 a {
  color: #111827;
}
.page[index] .left > ul li h2 a:hover {
  color: #3b82f6;
}
.page[index] .left > ul li .label {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page[index] .left > ul li .label .label-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f8fafc;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}
.page[index] .left > ul li .label .label-card i {
  color: #94a3b8;
}
.page[index] .left > ul li .label .categories {
  padding: 0;
}
.page[index] .left > ul li .label .categories a {
  background: #eff6ff;
  color: #3b82f6;
}
.page[index] .left > ul li .label .categories a:hover {
  background: #3b82f6;
  color: #ffffff;
}
.page[index] .left > ul li .excerpt {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.page[index] .left > ul li .excerpt h2, .page[index] .left > ul li .excerpt h3, .page[index] .left > ul li .excerpt h4 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  border: none;
}
.page[index] .left > ul li .read-all {
  margin-top: 0;
  text-align: right;
  font-size: 14px;
}
.page[index] .left > ul li .read-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.page[index] .left > ul li .read-all a i {
  margin-right: 0;
  transition: transform 200ms ease;
}
.page[index] .left > ul li .read-all a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}
.page[index] .left > ul li .read-all a:hover i {
  transform: translateX(4px);
}
.page[index] .left small {
  display: block;
  color: #64748b;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}
.page[index] .left .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f1f5f9;
}
.page[index] .left .pagination .previous, .page[index] .left .pagination .next {
  padding: 12px 24px;
  background: #f8fafc;
  border-radius: 12px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  transition: all 200ms ease;
}
.page[index] .left .pagination .previous:hover:not(.disable), .page[index] .left .pagination .next:hover:not(.disable) {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
}
.page[index] .left .pagination .disable {
  color: #cbd5e1;
  cursor: not-allowed;
}
.page[index] .left .pagination .page_number {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
}
.page[index] .right .wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page[index] .right .wrap .side {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.page[index] .right .wrap .side > div:first-child {
  padding: 20px 24px;
  border-bottom: 1px solid #f8fafc;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  background: #fafbfc;
}
.page[index] .right .wrap .side i {
  margin-right: 6px;
}
.page[index] .right .wrap .side .content-ul[cate] {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}
.page[index] .right .wrap .side .content-ul[cate] li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid #f8fafc;
  transition: all 200ms ease;
}
.page[index] .right .wrap .side .content-ul[cate] li a:hover {
  background: #f0f9ff;
  padding-left: 28px;
}
.page[index] .right .wrap .side .content-ul[cate] li a:hover .badge {
  background: #3b82f6;
  transform: scale(1.1);
}
.page[index] .right .wrap .side .content-ul[cate] li a .name {
  padding-left: 0;
  color: #4b5563;
  font-weight: 500;
}
.page[index] .right .wrap .side .content-ul[cate] li a .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: #94a3b8;
  border-radius: 14px;
  transition: all 250ms ease;
}
.page[index] .right .wrap .side .content-ul[cate] li:last-child a {
  border: none;
}
.page[index] .right .wrap .side .content-ul[recent] {
  padding: 16px 24px;
}
.page[index] .right .wrap .side .content-ul[recent] li {
  padding: 12px 0;
  color: #64748b;
  font-size: 14px;
  border-bottom: 1px solid #f8fafc;
  transition: all 200ms ease;
}
.page[index] .right .wrap .side .content-ul[recent] li:last-child {
  border: none;
}
.page[index] .right .wrap .side .content-ul[recent] li:hover {
  color: #3b82f6;
  padding-left: 4px;
}
.page[index] .right .wrap .side .tags-cloud {
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page[index] .right .wrap .side .tags-cloud a {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 20px;
  transition: all 200ms ease;
}
.page[index] .right .wrap .side .tags-cloud a:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
}

@media screen and (max-width: 770px) {
  .page[index] .left > ul li {
    padding: 24px 0;
  }
  .page[index] .left > ul li:hover {
    padding-left: 0;
  }
  .page[index] .left > ul li h2 {
    font-size: 22px;
  }
  .page[index] .left > ul li .excerpt {
    font-size: 14px;
  }
}
.page[demo] .left {
  width: 100%;
}
.page[demo] .left a {
  color: #4d6dad;
  transition: 0.5s ease;
}
.page[demo] .left a:hover {
  color: #223253;
  background-color: #f4efeb;
}
.page[demo] .left .grid {
  margin: 0 auto;
  /* clearfix */
}
.page[demo] .left .grid:after {
  content: "";
  display: block;
  clear: both;
}
.page[demo] .left .grid .grid-item {
  width: 250px;
  background-color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  float: left;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
.page[demo] .left .grid .grid-item:hover {
  -webkit-box-shadow: 0 2px 30px -1px rgba(0, 0, 0, 0.6), inset 0 0 87px 0 rgba(184, 184, 184, 0.13);
  -moz-box-shadow: 0 2px 30px -1px rgba(0, 0, 0, 0.6), inset 0 0 87px 0 rgba(184, 184, 184, 0.13);
  box-shadow: 0 2px 30px -1px rgba(0, 0, 0, 0.6), inset 0 0 87px 0 rgba(184, 184, 184, 0.13);
}
.page[demo] .left .grid .grid-item .a-img {
  color: #fff;
}
.page[demo] .left .grid .grid-item .a-img:hover {
  color: #fff;
  background-color: #fff;
}
.page[demo] .left .grid .grid-item .demo-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 8px;
}
.page[demo] .left .grid .grid-item p {
  margin: 0;
  padding: 0 8px;
  font-size: 14px;
}

.deep {
  transition: 0.32s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform-style: preserve-3d;
  transform: perspective(1600px) rotateX(14deg) translateZ(-200px);
}

.site-footer {
  text-align: center;
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  color: #9ca3af;
  margin-top: auto;
}
.site-footer .wrapper {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  font-size: 14px;
}
.site-footer .wrapper p {
  margin: 0 0 16px;
  line-height: 1.8;
}
.site-footer .wrapper .description {
  color: #d1d5db;
  font-style: italic;
  font-size: 15px;
}
.site-footer .wrapper .contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
}
.site-footer .wrapper .contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .wrapper .contact a:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}
.site-footer .wrapper .contact a i {
  font-size: 20px;
}
.site-footer .wrapper .power {
  font-size: 13px;
  color: #6b7280;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .wrapper .power a {
  color: #9ca3af;
  transition: color 200ms ease;
}
.site-footer .wrapper .power a:hover {
  color: #3b82f6;
}

@media screen and (max-width: 1200px) and (min-width: 770px) {
  .site-footer .wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 770px) {
  .site-footer .wrapper {
    width: 90%;
    padding: 48px 0;
  }
}
.content-ul::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.content-ul::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.content-ul::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.content-ul::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.content-ul::-webkit-scrollbar-thumb:active {
  background: #6b7280;
}
.content-ul::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}
.content-ul::-webkit-scrollbar-track:hover {
  background: #e5e7eb;
}
.content-ul::-webkit-scrollbar-track:active {
  background: #d1d5db;
}
.content-ul::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 5px;
  border: 2px solid #f9fafb;
}
html::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
html::-webkit-scrollbar-track {
  background: #f9fafb;
}

.back-to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}
.back-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #64748b;
  font-size: 20px;
  transition: all 200ms ease;
}
.back-to-top:hover {
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.25);
  transform: translateY(0);
  border-color: #3b82f6;
}
.back-to-top:hover a {
  color: #3b82f6;
}

.back-to-top-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1200px) and (min-width: 770px) {
  .back-to-top {
    right: 32px;
    bottom: 32px;
  }
}
@media screen and (max-width: 770px) {
  .back-to-top {
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
  }
  .back-to-top a {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/*# sourceMappingURL=main.css.map */